369b7f14a390be6020fa2b12ecf92e1350df780a,geoserver/webapp/src/main/java/com/boundlessgeo/geoserver/api/controllers/IO.java,IO,bbox,#JSONObj#ResourceInfo#,541

Before Change


        }
        else {
            if (r.getNativeCRS() instanceof GeographicCRS && r.getLatLonBoundingBox() != null) {
                bounds(bbox.putObject("lonlat"), (Envelope)r.getLatLonBoundingBox());
            }
        }
        return bbox;

After Change


        }
        else {
            if (r.getNativeCRS() instanceof GeographicCRS && r.getLatLonBoundingBox() != null) {
                bounds(bbox.putObject("lonlat"), r.getLatLonBoundingBox());
            }
        }
        return bbox;